From d292245659a86602b5e1d74a58ac28b1ac0e9b36 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 13 May 2014 06:15:56 -0400 Subject: [PATCH] gtk3-demo: Fix up toolpalette demo The demo appears pretty broken, because some icons are not fitting well in the grid. Just skip the problematic icons. --- demos/gtk-demo/toolpalette.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/demos/gtk-demo/toolpalette.c b/demos/gtk-demo/toolpalette.c index 9accab5d71..1f5bf9b59c 100644 --- a/demos/gtk-demo/toolpalette.c +++ b/demos/gtk-demo/toolpalette.c @@ -656,6 +656,9 @@ load_icon_items (GtkToolPalette *palette) GtkWidget *group = gtk_tool_item_group_new (context); gtk_container_add (GTK_CONTAINER (palette), group); + if (g_strcmp0 (context, "Animations") == 0) + continue; + g_message ("Got context '%s'", context); icon_names = gtk_icon_theme_list_icons (icon_theme, context); icon_names = g_list_sort (icon_names, (GCompareFunc) strcmp); @@ -665,6 +668,9 @@ load_icon_items (GtkToolPalette *palette) GtkToolItem *item; gchar *id = ll->data; + if (g_strcmp0 (id, "emblem-desktop") == 0) + continue; + g_message ("Got id '%s'", id); item = gtk_tool_button_new (NULL, NULL); -- 2.30.2